#include "gtkplacesviewrowprivate.h"
#include "gtktypebuiltins.h"
-/**
+/*
* SECTION:gtkplacesview
* @Short_description: Widget that displays persistent drives and manages mounted networks
* @Title: GtkPlacesView
widget_class->destroy = gtk_places_view_destroy;
widget_class->map = gtk_places_view_map;
- /**
+ /*
* GtkPlacesView::open-location:
* @view: the object which received the signal.
* @location: (type Gio.File): #GFile to which the caller should switch.
G_TYPE_OBJECT,
GTK_TYPE_PLACES_OPEN_FLAGS);
- /**
+ /*
* GtkPlacesView::show-error-message:
* @view: the object which received the signal.
* @primary: primary message with a summary of the error to show.
gtk_widget_init_template (GTK_WIDGET (self));
}
-/**
+/*
* gtk_places_view_new:
*
* Creates a new #GtkPlacesView widget.
return g_object_new (GTK_TYPE_PLACES_VIEW, NULL);
}
-/**
+/*
* gtk_places_view_set_open_flags:
* @view: a #GtkPlacesView
* @flags: Bitmask of modes in which the calling application can open locations
}
}
-/**
+/*
* gtk_places_view_get_open_flags:
* @view: a #GtkPlacesSidebar
*
return priv->open_flags;
}
-/**
+/*
* gtk_places_view_get_search_query:
* @view: a #GtkPlacesView
*
return priv->search_query;
}
-/**
+/*
* gtk_places_view_set_search_query:
* @view: a #GtkPlacesView
* @query_text: the query, or NULL.
}
}
-/**
+/*
* gtk_places_view_get_loading:
* @view: a #GtkPlacesView
*
}
}
-/**
+/*
* gtk_places_view_get_local_only:
* @view: a #GtkPlacesView
*
return priv->local_only;
}
-/**
+/*
* gtk_places_view_set_local_only:
* @view: a #GtkPlacesView
* @local_only: %TRUE to hide remote locations, %FALSE to show.